f98a100be401deeedc25cfc8ca0e12025f8d60cb
[lhc/web/wiklou.git] / includes / api / ApiQueryLogEvents.php
1 <?php
2
3 /**
4 * Created on Oct 16, 2006
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once( 'ApiQueryBase.php' );
29 }
30
31 /**
32 * Query action to List the log events, with optional filtering by various parameters.
33 *
34 * @ingroup API
35 */
36 class ApiQueryLogEvents extends ApiQueryBase {
37
38 public function __construct( $query, $moduleName ) {
39 parent::__construct( $query, $moduleName, 'le' );
40 }
41
42 public function execute() {
43 $params = $this->extractRequestParams();
44 $db = $this->getDB();
45
46 $prop = array_flip( $params['prop'] );
47
48 $this->fld_ids = isset( $prop['ids'] );
49 $this->fld_title = isset( $prop['title'] );
50 $this->fld_type = isset( $prop['type'] );
51 $this->fld_action = isset ( $prop['action'] );
52 $this->fld_user = isset( $prop['user'] );
53 $this->fld_timestamp = isset( $prop['timestamp'] );
54 $this->fld_comment = isset( $prop['comment'] );
55 $this->fld_parsedcomment = isset ( $prop['parsedcomment'] );
56 $this->fld_details = isset( $prop['details'] );
57 $this->fld_tags = isset( $prop['tags'] );
58
59 list( $tbl_logging, $tbl_page, $tbl_user ) = $db->tableNamesN( 'logging', 'page', 'user' );
60
61 $hideLogs = LogEventsList::getExcludeClause( $db );
62 if ( $hideLogs !== false ) {
63 $this->addWhere( $hideLogs );
64 }
65
66 // Order is significant here
67 $this->addTables( array( 'logging', 'user', 'page' ) );
68 $this->addOption( 'STRAIGHT_JOIN' );
69 $this->addJoinConds( array(
70 'user' => array( 'JOIN',
71 'user_id=log_user' ),
72 'page' => array( 'LEFT JOIN',
73 array( 'log_namespace=page_namespace',
74 'log_title=page_title' ) ) ) );
75 $index = array( 'logging' => 'times' ); // default, may change
76
77 $this->addFields( array(
78 'log_type',
79 'log_action',
80 'log_timestamp',
81 'log_deleted',
82 ) );
83
84 $this->addFieldsIf( 'log_id', $this->fld_ids );
85 $this->addFieldsIf( 'page_id', $this->fld_ids );
86 $this->addFieldsIf( 'log_user', $this->fld_user );
87 $this->addFieldsIf( 'user_name', $this->fld_user );
88 $this->addFieldsIf( 'log_namespace', $this->fld_title );
89 $this->addFieldsIf( 'log_title', $this->fld_title );
90 $this->addFieldsIf( 'log_comment', $this->fld_comment || $this->fld_parsedcomment );
91 $this->addFieldsIf( 'log_params', $this->fld_details );
92
93 if ( $this->fld_tags ) {
94 $this->addTables( 'tag_summary' );
95 $this->addJoinConds( array( 'tag_summary' => array( 'LEFT JOIN', 'log_id=ts_log_id' ) ) );
96 $this->addFields( 'ts_tags' );
97 }
98
99 if ( !is_null( $params['tag'] ) ) {
100 $this->addTables( 'change_tag' );
101 $this->addJoinConds( array( 'change_tag' => array( 'INNER JOIN', array( 'log_id=ct_log_id' ) ) ) );
102 $this->addWhereFld( 'ct_tag', $params['tag'] );
103 global $wgOldChangeTagsIndex;
104 $index['change_tag'] = $wgOldChangeTagsIndex ? 'ct_tag' : 'change_tag_tag_id';
105 }
106
107 if ( !is_null( $params['action'] ) ) {
108 list( $type, $action ) = explode( '/', $params['action'] );
109 $this->addWhereFld( 'log_type', $type );
110 $this->addWhereFld( 'log_action', $action );
111 }
112 else if ( !is_null( $params['type'] ) ) {
113 $this->addWhereFld( 'log_type', $params['type'] );
114 $index['logging'] = 'type_time';
115 }
116
117 $this->addWhereRange( 'log_timestamp', $params['dir'], $params['start'], $params['end'] );
118
119 $limit = $params['limit'];
120 $this->addOption( 'LIMIT', $limit + 1 );
121
122 $user = $params['user'];
123 if ( !is_null( $user ) ) {
124 $userid = User::idFromName( $user );
125 if ( !$userid ) {
126 $this->dieUsage( "User name $user not found", 'param_user' );
127 }
128 $this->addWhereFld( 'log_user', $userid );
129 $index['logging'] = 'user_time';
130 }
131
132 $title = $params['title'];
133 if ( !is_null( $title ) ) {
134 $titleObj = Title::newFromText( $title );
135 if ( is_null( $titleObj ) ) {
136 $this->dieUsage( "Bad title value '$title'", 'param_title' );
137 }
138 $this->addWhereFld( 'log_namespace', $titleObj->getNamespace() );
139 $this->addWhereFld( 'log_title', $titleObj->getDBkey() );
140
141 // Use the title index in preference to the user index if there is a conflict
142 $index['logging'] = is_null( $user ) ? 'page_time' : array( 'page_time', 'user_time' );
143 }
144
145 $this->addOption( 'USE INDEX', $index );
146
147 // Paranoia: avoid brute force searches (bug 17342)
148 if ( !is_null( $title ) ) {
149 $this->addWhere( $db->bitAnd( 'log_deleted', LogPage::DELETED_ACTION ) . ' = 0' );
150 }
151 if ( !is_null( $user ) ) {
152 $this->addWhere( $db->bitAnd( 'log_deleted', LogPage::DELETED_USER ) . ' = 0' );
153 }
154
155 $count = 0;
156 $res = $this->select( __METHOD__ );
157 foreach ( $res as $row ) {
158 if ( ++ $count > $limit ) {
159 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
160 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->log_timestamp ) );
161 break;
162 }
163
164 $vals = $this->extractRowInfo( $row );
165 if ( !$vals ) {
166 continue;
167 }
168 $fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ), null, $vals );
169 if ( !$fit ) {
170 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->log_timestamp ) );
171 break;
172 }
173 }
174 $this->getResult()->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'item' );
175 }
176
177 public static function addLogParams( $result, &$vals, $params, $type, $ts ) {
178 $params = explode( "\n", $params );
179 switch ( $type ) {
180 case 'move':
181 if ( isset( $params[0] ) ) {
182 $title = Title::newFromText( $params[0] );
183 if ( $title ) {
184 $vals2 = array();
185 ApiQueryBase::addTitleInfo( $vals2, $title, 'new_' );
186 $vals[$type] = $vals2;
187 }
188 }
189 if ( isset( $params[1] ) && $params[1] ) {
190 $vals[$type]['suppressedredirect'] = '';
191 }
192 $params = null;
193 break;
194 case 'patrol':
195 $vals2 = array();
196 list( $vals2['cur'], $vals2['prev'], $vals2['auto'] ) = $params;
197 $vals[$type] = $vals2;
198 $params = null;
199 break;
200 case 'rights':
201 $vals2 = array();
202 list( $vals2['old'], $vals2['new'] ) = $params;
203 $vals[$type] = $vals2;
204 $params = null;
205 break;
206 case 'block':
207 $vals2 = array();
208 list( $vals2['duration'], $vals2['flags'] ) = $params;
209
210 // Indefinite blocks have no expiry time
211 if ( Block::parseExpiryInput( $params[0] ) !== Block::infinity() ) {
212 $vals2['expiry'] = wfTimestamp( TS_ISO_8601,
213 strtotime( $params[0], wfTimestamp( TS_UNIX, $ts ) ) );
214 }
215 $vals[$type] = $vals2;
216 $params = null;
217 break;
218 }
219 if ( !is_null( $params ) ) {
220 $result->setIndexedTagName( $params, 'param' );
221 $vals = array_merge( $vals, $params );
222 }
223 return $vals;
224 }
225
226 private function extractRowInfo( $row ) {
227 $vals = array();
228
229 if ( $this->fld_ids ) {
230 $vals['logid'] = intval( $row->log_id );
231 $vals['pageid'] = intval( $row->page_id );
232 }
233
234 $title = Title::makeTitle( $row->log_namespace, $row->log_title );
235
236 if ( $this->fld_title ) {
237 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_ACTION ) ) {
238 $vals['actionhidden'] = '';
239 } else {
240 ApiQueryBase::addTitleInfo( $vals, $title );
241 }
242 }
243
244 if ( $this->fld_type || $this->fld_action ) {
245 $vals['type'] = $row->log_type;
246 $vals['action'] = $row->log_action;
247 }
248
249 if ( $this->fld_details && $row->log_params !== '' ) {
250 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_ACTION ) ) {
251 $vals['actionhidden'] = '';
252 } else {
253 self::addLogParams(
254 $this->getResult(), $vals,
255 $row->log_params, $row->log_type,
256 $row->log_timestamp
257 );
258 }
259 }
260
261 if ( $this->fld_user ) {
262 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_USER ) ) {
263 $vals['userhidden'] = '';
264 } else {
265 $vals['user'] = $row->user_name;
266 if ( !$row->log_user )
267 $vals['anon'] = '';
268 }
269 }
270 if ( $this->fld_timestamp ) {
271 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->log_timestamp );
272 }
273
274 if ( ( $this->fld_comment || $this->fld_parsedcomment ) && isset( $row->log_comment ) ) {
275 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_COMMENT ) ) {
276 $vals['commenthidden'] = '';
277 } else {
278 if ( $this->fld_comment ) {
279 $vals['comment'] = $row->log_comment;
280 }
281
282 if ( $this->fld_parsedcomment ) {
283 global $wgUser;
284 $vals['parsedcomment'] = $wgUser->getSkin()->formatComment( $row->log_comment, $title );
285 }
286 }
287 }
288
289 if ( $this->fld_tags ) {
290 if ( $row->ts_tags ) {
291 $tags = explode( ',', $row->ts_tags );
292 $this->getResult()->setIndexedTagName( $tags, 'tag' );
293 $vals['tags'] = $tags;
294 } else {
295 $vals['tags'] = array();
296 }
297 }
298
299 return $vals;
300 }
301
302 public function getAllowedParams() {
303 global $wgLogTypes, $wgLogActions;
304 return array(
305 'prop' => array(
306 ApiBase::PARAM_ISMULTI => true,
307 ApiBase::PARAM_DFLT => 'ids|title|type|user|timestamp|comment|details',
308 ApiBase::PARAM_TYPE => array(
309 'ids',
310 'title',
311 'type',
312 'user',
313 'timestamp',
314 'comment',
315 'parsedcomment',
316 'details',
317 'tags'
318 )
319 ),
320 'type' => array(
321 ApiBase::PARAM_TYPE => $wgLogTypes
322 ),
323 'action' => array(
324 ApiBase::PARAM_TYPE => array_keys( $wgLogActions )
325 ),
326 'start' => array(
327 ApiBase::PARAM_TYPE => 'timestamp'
328 ),
329 'end' => array(
330 ApiBase::PARAM_TYPE => 'timestamp'
331 ),
332 'dir' => array(
333 ApiBase::PARAM_DFLT => 'older',
334 ApiBase::PARAM_TYPE => array(
335 'newer',
336 'older'
337 )
338 ),
339 'user' => null,
340 'title' => null,
341 'tag' => null,
342 'limit' => array(
343 ApiBase::PARAM_DFLT => 10,
344 ApiBase::PARAM_TYPE => 'limit',
345 ApiBase::PARAM_MIN => 1,
346 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
347 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
348 )
349 );
350 }
351
352 public function getParamDescription() {
353 return array(
354 'prop' => 'Which properties to get',
355 'type' => 'Filter log entries to only this type(s)',
356 'action' => "Filter log actions to only this type. Overrides {$this->getModulePrefix()}type",
357 'start' => 'The timestamp to start enumerating from',
358 'end' => 'The timestamp to end enumerating',
359 'dir' => 'In which direction to enumerate',
360 'user' => 'Filter entries to those made by the given user',
361 'title' => 'Filter entries to those related to a page',
362 'limit' => 'How many total event entries to return',
363 'tag' => 'Only list event entries tagged with this tag',
364 );
365 }
366
367 public function getDescription() {
368 return 'Get events from logs';
369 }
370
371 public function getPossibleErrors() {
372 return array_merge( parent::getPossibleErrors(), array(
373 array( 'code' => 'param_user', 'info' => 'User name $user not found' ),
374 array( 'code' => 'param_title', 'info' => 'Bad title value \'title\'' ),
375 ) );
376 }
377
378 protected function getExamples() {
379 return array(
380 'api.php?action=query&list=logevents'
381 );
382 }
383
384 public function getVersion() {
385 return __CLASS__ . ': $Id$';
386 }
387 }